home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / text / misc / port / string / strcat.s < prev    next >
Encoding:
Text File  |  1996-09-07  |  234 b   |  16 lines

  1.  
  2.     XDEF    StrCat
  3.  
  4.     XREF    StrEnd
  5.     XREF    StrCpy
  6.  
  7. ; StrCat() - Adds a string (A1) to the end of another string (A0).
  8. ; Args:
  9. ; A0 = Pointer to the destination string.
  10. ; A1 = Pointer to the source string.
  11.  
  12. StrCat:
  13.     bsr    StrEnd
  14.     bsr    StrCpy
  15.     rts
  16.